home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue38 / Clinic / NoClose2Form.pas < prev    next >
Pascal/Delphi Source File  |  1998-06-24  |  755b  |  36 lines

  1. unit NoClose2Form;
  2.  
  3. interface
  4.  
  5. uses
  6.   Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
  7.   StdCtrls;
  8.  
  9. type
  10.   TForm1 = class(TForm)
  11.     Label1: TLabel;
  12.   private
  13.     procedure WMQueryEndSession(var Msg: TWMQueryEndSession);
  14.       message wm_QueryEndSession;
  15.   end;
  16.  
  17. var
  18.   Form1: TForm1;
  19.  
  20. implementation
  21.  
  22. {$R *.DFM}
  23.  
  24. procedure TForm1.WMQueryEndSession(var Msg: TWMQueryEndSession);
  25. const
  26.   Prompt = 'Allow program to close, and thereby let Windows session end?';
  27. begin
  28.   LongBool(Msg.Result) :=
  29.     MessageDlg(Prompt, mtConfirmation, [mbYes, mbNo], 0) = mrYes;
  30.   //If it still seems okay to terminate, then call previously installed checking
  31.   if LongBool(Msg.Result) then
  32.     inherited;
  33. end;
  34.  
  35. end.
  36.